Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 808 Bytes

gettxout.md

File metadata and controls

38 lines (28 loc) · 808 Bytes

gettxout Method

Returns the corresponding unspent transaction output information (returned change), based on the specified hash and index. If the transaction output is already spent, the result value will be null.

Parameter Description

  • Txid: Transaction ID

  • N: The index of the transaction output to be obtained in the transaction (starts from 0)

Example

Request body:

{
   "jsonrpc": "2.0",
   "method": "gettxout",
   "params": ["f4250dab094c38d8265acc15c366dc508d2e14bf5699e12d9df26577ed74d657", 0],
   "id": 1
}

Response body:

{
   "jsonrpc": "2.0",
   "id": 1,
   "result": {
     "N": 0,
     "Asset": "c56f33fc6ecfcd0c225c4ab356fee59390af8560be0e930faebe74a6daff7c9b",
     "Value": "2950",
     "Address": "AHCNSDkh2Xs66SzmyKGdoDKY752uyeXDrt"
   }
}